home *** CD-ROM | disk | FTP | other *** search
/ IRIX 6.5 Applications 2004 April / SGI IRIX 6.5 Applications 2004 April.iso / dist / mozilla.idb / var / netscape / mozilla / chrome / messenger.jar.z / messenger.jar / content / messenger-smime / msgCompSecurityInfo.xul < prev    next >
Extensible Markup Language  |  2003-11-11  |  4KB  |  110 lines

  1. <?xml version="1.0"?>
  2. <!-- ***** BEGIN LICENSE BLOCK *****
  3.    - Version: MPL 1.1/GPL 2.0/LGPL 2.1
  4.    -
  5.    - The contents of this file are subject to the Mozilla Public License Version
  6.    - 1.1 (the "License"); you may not use this file except in compliance with
  7.    - the License. You may obtain a copy of the License at
  8.    - http://www.mozilla.org/MPL/
  9.    -
  10.    - Software distributed under the License is distributed on an "AS IS" basis,
  11.    - WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
  12.    - for the specific language governing rights and limitations under the
  13.    - License.
  14.    -
  15.    - The Original Code is Mozilla Communicator
  16.    -
  17.    - The Initial Developer of the Original Code is
  18.    - Netscape Communications Corp..
  19.    - Portions created by the Initial Developer are Copyright (C) 2002
  20.    - the Initial Developer. All Rights Reserved.
  21.    -
  22.    - Contributor(s):
  23.    -
  24.    - Alternatively, the contents of this file may be used under the terms of
  25.    - either the GNU General Public License Version 2 or later (the "GPL"), or
  26.    - the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
  27.    - in which case the provisions of the GPL or the LGPL are applicable instead
  28.    - of those above. If you wish to allow use of your version of this file only
  29.    - under the terms of either the GPL or the LGPL, and not to allow others to
  30.    - use your version of this file under the terms of the MPL, indicate your
  31.    - decision by deleting the provisions above and replace them with the notice
  32.    - and other provisions required by the LGPL or the GPL. If you do not delete
  33.    - the provisions above, a recipient may use your version of this file under
  34.    - the terms of any one of the MPL, the GPL or the LGPL.
  35.    -
  36.    - ***** END LICENSE BLOCK ***** -->
  37.  
  38. <?xml-sheet href="chrome://global/skin/" type="text/css"?>
  39. <?xml-stylesheet href="chrome://messenger/skin/smime/msgCompSecurityInfo.css" type="text/css"?>
  40.  
  41. <?xul-overlay href="chrome://global/content/dialogOverlay.xul"?>
  42.  
  43. <!DOCTYPE window SYSTEM "chrome://messenger-smime/locale/msgCompSecurityInfo.dtd">
  44.  
  45. <window id="msgCompSecurityInfo" title="&title.label;"
  46.   class="dialog"
  47.   xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"      
  48.   style="width: 50em;"
  49.   onload="onLoad();">
  50.  
  51. <script type="application/x-javascript" src="chrome://help/content/contextHelp.js"/>
  52. <script type="application/x-javascript" src="chrome://messenger-smime/content/msgCompSecurityInfo.js"/>
  53.  
  54. <stringbundle id="bundle_smime_comp_info" src="chrome://messenger-smime/locale/msgCompSecurityInfo.properties"/> 
  55.  
  56. <vbox id="outer_vbox">
  57.  
  58.   <description>&subject.plaintextWarning;</description>
  59.   <separator class="thin"/>
  60.   <description>&status.heading;</description>
  61.   <grid>
  62.     <columns>
  63.       <column/>
  64.       <column/>
  65.     </columns>
  66.     <rows>
  67.       <row>
  68.         <label value="&status.signed;"/>
  69.         <label id="signed"/>
  70.       </row>
  71.       <row>
  72.         <label value="&status.encrypted;"/>
  73.         <label id="encrypted"/>
  74.       </row>
  75.     </rows>
  76.   </grid>
  77.  
  78.   <separator class="thin"/>
  79.   <label value="&status.certificates;"/>
  80.  
  81.   <listbox id="infolist" style="height: 10em;" flex="1"
  82.         onselect="onSelectionChange(event);">
  83.     <listcols>
  84.       <listcol flex="3" width="0"/>
  85.       <splitter class="tree-splitter"/>
  86.       <listcol flex="1" width="0"/>
  87.       <splitter class="tree-splitter"/>
  88.       <listcol flex="2" width="0"/>
  89.       <splitter class="tree-splitter"/>
  90.       <listcol flex="2" width="0"/>
  91.     </listcols>
  92.     <listhead>
  93.       <listheader label="&tree.recipient;"/>
  94.       <listheader label="&tree.status;"/>
  95.       <listheader label="&tree.issuedDate;"/>
  96.       <listheader label="&tree.expiresDate;"/>
  97.     </listhead>
  98.   </listbox>
  99.   <hbox pack="start">
  100.     <button id="viewCertButton" disabled="true"
  101.             label="&view.label;"
  102.             oncommand="viewSelectedCert();"/>
  103.   </hbox>
  104.  
  105.   <separator class="thin"/>
  106.   <keyset id="dialogKeys"/>
  107.   <hbox id="okCancelHelpButtonsRight"/>
  108. </vbox>
  109. </window>
  110.